This endpoint allows the addition of a candidate to a company based on Company Id or authorization api key
phone (string, optional): The phone number of the candidate. (Required if email is missing)
email (string, optional): The email address of the candidate. (Required if phone is missing)
source (string, optional): The source of imported candidate. If empty the result will be
employee (boolean, optional): Is this person an employee or a candidate ?. If empty the result will be false
The response for this request can be represented as a JSON schema:
{
"type": "object",
"properties": {
"message": {
"type": "string"
},
"status": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"slug": {
"type": "string"
}
}
}
}
}
The body is of type object.
Created
The response is of type string.